home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / netlib / RCS / Net_HostToNetInt.c,v < prev    next >
Text File  |  1991-10-22  |  2KB  |  122 lines

  1. head     1.2;
  2. branch   ;
  3. access   ;
  4. symbols  sprited:1.2.1;
  5. locks    ; strict;
  6. comment  @ * @;
  7.  
  8.  
  9. 1.2
  10. date     89.01.27.16.36.42;  author mendel;  state Exp;
  11. branches 1.2.1.1;
  12. next     1.1;
  13.  
  14. 1.1
  15. date     88.11.21.09.10.09;  author mendel;  state Exp;
  16. branches ;
  17. next     ;
  18.  
  19. 1.2.1.1
  20. date     91.10.22.14.52.36;  author kupfer;  state Exp;
  21. branches ;
  22. next     ;
  23.  
  24.  
  25. desc
  26. @Formed from net.c of src/lib/old/net.c.
  27. @
  28.  
  29.  
  30. 1.2
  31. log
  32. @Removed newline from rcsid string.
  33. @
  34. text
  35. @/* 
  36.  * Net_HostToNetInt.c --
  37.  *
  38.  *    Convert an integer from host to network byte ordering.
  39.  *
  40.  * Copyright 1988 Regents of the University of California
  41.  * All rights reserved.
  42.  * Permission to use, copy, modify, and distribute this
  43.  * software and its documentation for any purpose and without
  44.  * fee is hereby granted, provided that the above copyright
  45.  * notice appear in all copies.  The University of California
  46.  * makes no representations about the suitability of this
  47.  * software for any purpose.  It is provided "as is" without
  48.  * express or implied warranty.
  49.  */
  50.  
  51. #ifndef lint
  52. static char rcsid[] = "$Header: /sprite/src/lib/net/RCS/Net_HostToNetInt.c,v 1.1 88/11/21 09:10:09 mendel Exp $ SPRITE (Berkeley)";
  53. #endif not lint
  54.  
  55.  
  56. #include "machparam.h"
  57.  
  58. /* 
  59.  *----------------------------------------------------------------------
  60.  *
  61.  * Net_HostToNetInt --
  62.  *
  63.  *    Convert an integer in host byte order to an integer in 
  64.  *    net byte order.
  65.  *
  66.  * Results:
  67.  *    The integer in net byte order.
  68.  *
  69.  * Side effects:
  70.  *    None.
  71.  *
  72.  *----------------------------------------------------------------------
  73.  */
  74.  
  75. unsigned int 
  76. Net_HostToNetInt(longInt)
  77.     unsigned int longInt;    /* 32bit integer in host byte order. */
  78. {
  79. #if BYTE_ORDER == LITTLE_ENDIAN
  80.  
  81.     union {
  82.         unsigned int l;
  83.         unsigned char  c[4];
  84.     } in, out;
  85.  
  86.     in.l = longInt;
  87.     out.c[0] = in.c[3];
  88.     out.c[1] = in.c[2];
  89.     out.c[2] = in.c[1];
  90.     out.c[3] = in.c[0];
  91.  
  92.         return (out.l);
  93. #else
  94.     return(longInt);
  95. #endif
  96. }
  97.  
  98. @
  99.  
  100.  
  101. 1.2.1.1
  102. log
  103. @Initial branch for Sprite server.
  104. @
  105. text
  106. @d18 1
  107. a18 1
  108. static char rcsid[] = "$Header: /sprite/src/lib/net/RCS/Net_HostToNetInt.c,v 1.2 89/01/27 16:36:42 mendel Exp $ SPRITE (Berkeley)";
  109. @
  110.  
  111.  
  112. 1.1
  113. log
  114. @Initial revision
  115. @
  116. text
  117. @d18 1
  118. a18 2
  119. static char rcsid[] = "$Header: net.c,v 2.0 87/08/11 09:34:20 brent Exp $ SPRITE
  120.  (Berkeley)";
  121. @
  122.